From cc3dceee8378e3aa000a519cef191f2c4b6d0937 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Mon, 3 Oct 2016 12:34:30 +0200 Subject: [PATCH] testfilechooserbutton: Remove GtkMisc API usage --- tests/testfilechooserbutton.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/testfilechooserbutton.c b/tests/testfilechooserbutton.c index 6a02d46b67..ec537aab9a 100644 --- a/tests/testfilechooserbutton.c +++ b/tests/testfilechooserbutton.c @@ -273,9 +273,7 @@ main (int argc, label = gtk_label_new_with_mnemonic ("_Open:"); gtk_size_group_add_widget (GTK_SIZE_GROUP (label_group), label); -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); -G_GNUC_END_IGNORE_DEPRECATIONS + gtk_label_set_xalign (GTK_LABEL (label), 0.0); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE); chooser = gtk_file_chooser_button_new ("Select A File - testfilechooserbutton", @@ -300,9 +298,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS label = gtk_label_new_with_mnemonic ("Select _Folder:"); gtk_size_group_add_widget (GTK_SIZE_GROUP (label_group), label); -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); -G_GNUC_END_IGNORE_DEPRECATIONS + gtk_label_set_xalign (GTK_LABEL (label), 0.0); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE); chooser = gtk_file_chooser_button_new ("Select A Folder - testfilechooserbutton", -- 2.30.2